home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Database How-To / Visual Basic 4 Database - How-to (The Waite Group)(1995).iso / vendors.fr_ / vendors.fr
Text File  |  1994-11-19  |  4KB  |  127 lines

  1. VERSION 4.00
  2. Begin VB.Form frmVendorDetails 
  3.    BackColor       =   &H00C0C0C0&
  4.    Caption         =   "Vendor Details"
  5.    ClientHeight    =   3435
  6.    ClientLeft      =   1680
  7.    ClientTop       =   1995
  8.    ClientWidth     =   5565
  9.    ControlBox      =   0   'False
  10.    BeginProperty Font 
  11.       name            =   "MS Sans Serif"
  12.       charset         =   1
  13.       weight          =   700
  14.       size            =   8.25
  15.       underline       =   0   'False
  16.       italic          =   0   'False
  17.       strikethrough   =   0   'False
  18.    EndProperty
  19.    Height          =   3840
  20.    Left            =   1620
  21.    LinkTopic       =   "Form2"
  22.    MaxButton       =   0   'False
  23.    MinButton       =   0   'False
  24.    ScaleHeight     =   3435
  25.    ScaleWidth      =   5565
  26.    Top             =   1650
  27.    Width           =   5685
  28.    Begin VB.CommandButton cmdClose 
  29.       Caption         =   "Close"
  30.       Default         =   -1  'True
  31.       Height          =   555
  32.       Left            =   2100
  33.       TabIndex        =   8
  34.       Top             =   2640
  35.       Width           =   1395
  36.    End
  37.    Begin VB.Label lblFEIN 
  38.       BackColor       =   &H00C0C0C0&
  39.       BorderStyle     =   1  'Fixed Single
  40.       Caption         =   " "
  41.       Height          =   255
  42.       Left            =   2040
  43.       TabIndex        =   7
  44.       Top             =   2100
  45.       Width           =   1755
  46.    End
  47.    Begin VB.Label lblAddress 
  48.       BackColor       =   &H00C0C0C0&
  49.       BorderStyle     =   1  'Fixed Single
  50.       Caption         =   " "
  51.       Height          =   855
  52.       Left            =   2040
  53.       TabIndex        =   6
  54.       Top             =   1140
  55.       Width           =   3195
  56.    End
  57.    Begin VB.Label lblName 
  58.       BackColor       =   &H00C0C0C0&
  59.       BorderStyle     =   1  'Fixed Single
  60.       Caption         =   " "
  61.       Height          =   255
  62.       Left            =   2040
  63.       TabIndex        =   5
  64.       Top             =   780
  65.       Width           =   3195
  66.    End
  67.    Begin VB.Label lblNumber 
  68.       BackColor       =   &H00C0C0C0&
  69.       BorderStyle     =   1  'Fixed Single
  70.       Caption         =   " "
  71.       Height          =   255
  72.       Left            =   2040
  73.       TabIndex        =   4
  74.       Top             =   420
  75.       Width           =   1155
  76.    End
  77.    Begin VB.Label Label4 
  78.       AutoSize        =   -1  'True
  79.       BackColor       =   &H00C0C0C0&
  80.       Caption         =   "Vendor FEIN:"
  81.       Height          =   195
  82.       Left            =   360
  83.       TabIndex        =   3
  84.       Top             =   2100
  85.       Width           =   1155
  86.    End
  87.    Begin VB.Label Label3 
  88.       AutoSize        =   -1  'True
  89.       BackColor       =   &H00C0C0C0&
  90.       Caption         =   "Vendor Address:"
  91.       Height          =   195
  92.       Left            =   360
  93.       TabIndex        =   2
  94.       Top             =   1140
  95.       Width           =   1410
  96.    End
  97.    Begin VB.Label Label2 
  98.       AutoSize        =   -1  'True
  99.       BackColor       =   &H00C0C0C0&
  100.       Caption         =   "Vendor Name:"
  101.       Height          =   195
  102.       Left            =   360
  103.       TabIndex        =   1
  104.       Top             =   780
  105.       Width           =   1215
  106.    End
  107.    Begin VB.Label Label1 
  108.       AutoSize        =   -1  'True
  109.       BackColor       =   &H00C0C0C0&
  110.       Caption         =   "Vendor Number:"
  111.       Height          =   195
  112.       Left            =   360
  113.       TabIndex        =   0
  114.       Top             =   420
  115.       Width           =   1380
  116.    End
  117. End
  118. Attribute VB_Name = "frmVendorDetails"
  119. Attribute VB_Creatable = False
  120. Attribute VB_Exposed = False
  121. Option Explicit
  122.  
  123. Private Sub cmdClose_Click()
  124.     Unload frmVendorDetails
  125. End Sub
  126.  
  127.